*/}}
YimingWu 18 часов назад
Родитель
Сommit
8f3627e930
5 измененных файлов с 6 добавлено и 5 удалено
  1. 1 1
      CMakeLists.txt
  2. 1 0
      GenerateAppimage.py
  3. BIN
      default_pigments.udf
  4. 2 2
      ouroperations.c
  5. 2 2
      ourpaint.h

+ 1 - 1
CMakeLists.txt

@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.1)
+cmake_minimum_required(VERSION 3.5)
 project(OurPaint)
 
 if(${ANDROID})

+ 1 - 0
GenerateAppimage.py

@@ -83,6 +83,7 @@ additional="""
     - libxcursor1
     - libxrandr2
     - libglew2.2
+    - liblzma5
 """
 template=template.replace("---includes---",additional)
 

BIN
default_pigments.udf


+ 2 - 2
ouroperations.c

@@ -951,7 +951,7 @@ void ourui_SplashPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProp
         laShowImage(uil,c,Our->SplashImage,5)->Flags|=LA_UI_IMAGE_FULL_W;
     }
     laUiItem* b=laBeginRow(uil,cl,0,0); laShowLabel(uil,cl,OUR_PAINT_NAME_STRING,0,0);
-    laShowItemFull(uil, cl, 0, "LA_open_internet_link", 0, "icon=★;link=https://www.wellobserve.com/index.php?post=20250614122439;text=Release Notes", 0, 0);
+    laShowItemFull(uil, cl, 0, "LA_open_internet_link", 0, "icon=★;link=https://www.wellobserve.com/index.php?post=20260306205227;text=Release Notes", 0, 0);
     laEndRow(uil,b);
     laShowLabel(uil,cl,"Our Paint is a free application.",0,0)->Flags|=LA_UI_FLAGS_DISABLED|LA_TEXT_LINE_WRAP|LA_UI_MIN_WIDTH;
     b=laBeginRow(uil,cl,0,0);
@@ -5081,7 +5081,7 @@ void ourui_MenuButtons(laUiList *uil, laPropPack *pp, laPropPack *actinst, laCol
 
         laShowLabel(muil, mc, "Help", 0, 0)->Flags|=LA_TEXT_MONO|LA_UI_FLAGS_DISABLED;
         laShowItemFull(muil, mc, 0, "LA_open_internet_link", 0, "icon=📖;link=http://www.ChengduLittleA.com/ourpaintmanual;text=User Manual", 0, 0);
-        laShowItemFull(muil, mc, 0, "LA_open_internet_link", 0, "icon=★;link=https://www.wellobserve.com/index.php?post=20250614122439;text=Release Notes", 0, 0);
+        laShowItemFull(muil, mc, 0, "LA_open_internet_link", 0, "icon=★;link=https://www.wellobserve.com/index.php?post=20260306205227;text=Release Notes", 0, 0);
         laShowItemFull(muil, mc, 0, "LA_open_internet_link", 0, "icon=🐞;link=https://www.wellobserve.com/repositories/chengdulittlea/OurPaint/issues;text=Report a Bug", 0, 0);
         
 

+ 2 - 2
ourpaint.h

@@ -61,9 +61,9 @@ extern const char OUR_PIGMENT_COMMON[];
 
 #define OUR_VERSION_MAJOR 0
 #define OUR_VERSION_MINOR 5
-#define OUR_VERSION_SUB 0
+#define OUR_VERSION_SUB 1
 
-#define OUR_PAINT_NAME_STRING "Our Paint v0.5"
+#define OUR_PAINT_NAME_STRING "Our Paint v0.5a"
 
 #define OUR_SIGNAL_PICK 1
 #define OUR_SIGNAL_MOVE 2